summaryrefslogtreecommitdiff
path: root/flac-32/Pkgfile
blob: b492093b5f39783344939527319f48c2a43115d2 (plain)
    1 # Description: Free Lossless Audio Codec.
    2 # URL: http://xiph.org/flac/
    3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
    4 # Depends on: libogg-32
    5 
    6 name=flac-32
    7 version=1.3.2
    8 release=1
    9 source=(https://downloads.xiph.org/releases/flac/flac-$version.tar.xz)
   10 
   11 build() {
   12 	cd flac-$version
   13 
   14 	./configure \
   15 		--prefix=/usr \
   16 		--libdir=/usr/lib32 \
   17 		--host=i686-pc-linux-gnu \
   18 		--with-ogg-libraries=/usr/lib32
   19 
   20 	make
   21 	make DESTDIR=$PKG install
   22 	
   23 	rm -r $PKG/usr/{bin,include,share/{aclocal,doc,man}}
   24 	rmdir $PKG/usr/share
   25 }

Generated by cgit