diff options
Diffstat (limited to 'community/librcd')
-rw-r--r-- | community/librcd/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/librcd/PKGBUILD b/community/librcd/PKGBUILD new file mode 100644 index 000000000..6b4daf162 --- /dev/null +++ b/community/librcd/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 21395 2010-07-16 11:57:07Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=librcd +pkgver=0.1.11 +pkgrel=2 +pkgdesc="Charset Detection Library" +arch=(i686 x86_64) +url="http://rusxmms.sourceforge.net/" +depends=(glibc) +license=('GPL') +options=('!libtool') +source=(http://downloads.sourceforge.net/rusxmms/${pkgname}-${pkgver}.tar.bz2) +md5sums=('17fcea35961f85c21c58a233d54a508c') + +build() { + cd $srcdir/$pkgname-${pkgver} + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$pkgdir install +} |