diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2012-04-08 18:19:42 +1000 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2012-04-08 18:20:02 +1000 |
commit | 48c830101378940131c188c37c92502c2a51ba62 (patch) | |
tree | 3bcf910031e63e90162458105397d1c9fec0c4a8 /libao | |
parent | a5bf0e9b61f5f9ac7da1bfeddce6d1440e325127 (diff) | |
download | opt-48c830101378940131c188c37c92502c2a51ba62.tar.gz opt-48c830101378940131c188c37c92502c2a51ba62.tar.xz |
libao: 1.0.0 -> 1.1.0, picked up orphaned port
Diffstat (limited to 'libao')
-rw-r--r-- | libao/.md5sum | 2 | ||||
-rw-r--r-- | libao/Pkgfile | 24 |
2 files changed, 13 insertions, 13 deletions
diff --git a/libao/.md5sum b/libao/.md5sum index 974dc01c2..4c0b9dd7c 100644 --- a/libao/.md5sum +++ b/libao/.md5sum @@ -1 +1 @@ -08283fbe1f587619053a156254afecec libao-1.0.0.tar.gz +2b2508c29bc97e4dc218fa162cf883c8 libao-1.1.0.tar.gz diff --git a/libao/Pkgfile b/libao/Pkgfile index e43a9ab9a..c5ccb509b 100644 --- a/libao/Pkgfile +++ b/libao/Pkgfile @@ -1,23 +1,23 @@ -# Description: Cross-platform audio output library and plugins +# Description: Cross-platform audio output library and plugins. # URL: http://www.xiph.org/ao/ -# Maintainer: Simon Glossner, viper at hometux dot de +# Maintainer: Danny Rawlins, monster dot romster at gmail dot com # Packager: Olle Gustafsson, ogg at linux dot se +# Depends on: alsa-lib name=libao -version=1.0.0 +version=1.1.0 release=1 -source=(http://downloads.xiph.org/releases/ao/${name}-${version}.tar.gz) +source=(http://downloads.xiph.org/releases/ao/$name-$version.tar.gz) build() { - cd $name-$version + cd $name-$version - sed -i 's|MANDIR=.*|MANDIR=/usr/man|' configure + ./configure \ + --prefix=/usr \ + --mandir=/usr/man - ./configure \ - --prefix=/usr \ - --mandir=/usr/man - make - make DESTDIR=$PKG install + make + make DESTDIR=$PKG install - rm -rf $PKG/usr/share/doc + rm -r $PKG/usr/share/doc } |