forked from blue/mlc
1
0
Fork 0
This commit is contained in:
Blue 2023-10-10 21:28:06 -03:00
parent 18489476af
commit ed4d7365ac
Signed by untrusted user: blue
GPG Key ID: 9B203B252A63EE38
3 changed files with 7 additions and 4 deletions

View File

@ -12,7 +12,7 @@ jobs:
run: curl -sL ${{ gitea.server_url }}/${{ gitea.repository }}/archive/${{ gitea.event.release.tag_name }}.tar.gz --output tarball.tar.gz
- name: Debug output
run: echo ${{ gitea.href }}
run: echo ${{ gitea.ref }}
- name: Calculate SHA256 for the tarball
run: echo "tbSum=$(sha256sum tarball.tar.gz | cut -d ' ' -f 1)" >> $GITHUB_ENV
@ -23,6 +23,9 @@ jobs:
- name: Create a directory
run: mkdir aur
- name: Release permissions
run: chmod 777 aur
- name: Copy PKGBUILD to the directory
run: cp mlc/packaging/Archlinux/PKGBUILD aur/
@ -32,7 +35,7 @@ jobs:
- name: create SRCINFO
working-directory: aur
run: makepkg --printsrcinfo > .SRCINFO
run: sudo -u build makepkg --printsrcinfo > .SRCINFO
- name: Debug print PKGBUILD
run: cat aur/PKGBUILD

View File

@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.5)
project(
mlc
VERSION 1.3.22
VERSION 1.3.23
DESCRIPTION "Media Library Compiler: rips your media library to a lossy compilation"
LANGUAGES CXX
)

View File

@ -1,6 +1,6 @@
# Maintainer: Yury Gubich <blue@macaw.me>
pkgname=mlc
pkgver=1.3.22
pkgver=1.3.23
pkgrel=1
pkgdesc="Media Library Compiler: rips your media library to a lossy compilation"
arch=('i686' 'x86_64')