Skip to content
Snippets Groups Projects
Commit b63589e4 authored by Maxime Gauduin's avatar Maxime Gauduin
Browse files

upgpkg: 1.0.1-1

parent 39ad9dcf
No related branches found
No related tags found
No related merge requests found
......@@ -2,15 +2,19 @@
# Contributor: PelPix <kylebloss@pelpix.info>
pkgname=fdkaac
pkgver=1.0.0
pkgrel=2
pkgver=1.0.1
pkgrel=1
pkgdesc='Command line encoder frontend for libfdk-aac'
arch=(x86_64)
url='https://github.com/nu774/fdkaac'
url=https://github.com/nu774/fdkaac
license=(custom)
depends=(libfdk-aac.so)
depends=(
glibc
libfdk-aac.so
)
makedepends=(git)
source=(git+https://github.com/nu774/fdkaac.git#tag=${pkgver})
_tag=fdf5c2f251a6b35dc2b3df561cfd247829b98f5d
source=(git+https://github.com/nu774/fdkaac.git#tag=${_tag})
sha256sums=(SKIP)
prepare() {
......@@ -19,20 +23,24 @@ prepare() {
autoreconf -fiv
}
pkgver() {
cd fdkaac
git describe --tags | sed 's/^v//'
}
build() {
cd fdkaac
./configure \
--prefix='/usr' \
--prefix=/usr \
--disable-rpath
make
}
package() {
cd fdkaac
make DESTDIR="${pkgdir}" install
install -Dm 644 COPYING -t "${pkgdir}"/usr/share/licenses/fdkaac/
make DESTDIR="${pkgdir}" -C fdkaac install
install -Dm 644 fdkaac/COPYING -t "${pkgdir}"/usr/share/licenses/fdkaac/
}
# vim: ts=2 sw=2 et:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment