diff options
author | Danny Rawlins <romster@shortcircuit.net.au> | 2007-09-24 10:46:11 +1000 |
---|---|---|
committer | Danny Rawlins <romster@shortcircuit.net.au> | 2007-09-24 10:46:11 +1000 |
commit | 1a8169c025da5d8edc5f153ec977669be8167077 (patch) | |
tree | 8fa11fb70b26d3c9987fdfd9238d19506a8cb8f2 /libshout | |
parent | a2895e0d3c0cada09cff0115d31a7ed0e593634e (diff) | |
download | contrib-1a8169c025da5d8edc5f153ec977669be8167077.tar.gz contrib-1a8169c025da5d8edc5f153ec977669be8167077.tar.xz |
libshout: Pkgfile clean up
Diffstat (limited to 'libshout')
-rw-r--r-- | libshout/Pkgfile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libshout/Pkgfile b/libshout/Pkgfile index fda0ea476..6cf9c6707 100644 --- a/libshout/Pkgfile +++ b/libshout/Pkgfile @@ -1,4 +1,4 @@ -# Description: library for communicating with an icecast server +# Description: Library for communicating with an icecast server. # URL: http://www.icecast.org/ # Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au # Packager: Han Boetes, han at mijncomputer dot nl @@ -7,15 +7,17 @@ name=libshout version=2.2.2 release=1 -source=(http://downloads.us.xiph.org/releases/libshout/$name-$version.tar.gz) +source=(http://downloads.us.xiph.org/releases/libshout/libshout-$version.tar.gz) build() { - cd $name-$version + cd libshout-$version ./configure \ --prefix=/usr \ --disable-nls - make && make install DESTDIR=$PKG + + make + make install DESTDIR=$PKG rm -r $PKG/usr/share/doc/ } |