contrib/faac/Pkgfile

19 lines
364 B
Plaintext
Raw Normal View History

2023-08-18 20:02:38 +02:00
# Description: MPEG-4 audio codecs
# URL: https://www.audiocoding.com/
2023-08-18 20:02:38 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
name=faac
2019-11-10 01:15:46 +01:00
version=1.30
release=2
2019-11-10 01:15:46 +01:00
source=(https://github.com/knik0/faac/archive/${version/./_}/$name-${version/./_}.tar.gz)
build() {
2023-08-18 20:02:38 +02:00
cd $name-${version/./_}
2023-08-18 20:02:38 +02:00
./bootstrap
./configure --prefix=/usr
2023-08-18 20:02:38 +02:00
make
make DESTDIR=$PKG install
}