diff options
Diffstat (limited to 'community/libmaa')
-rw-r--r-- | community/libmaa/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/libmaa/PKGBUILD b/community/libmaa/PKGBUILD new file mode 100644 index 000000000..085518f80 --- /dev/null +++ b/community/libmaa/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 88315 2013-04-16 13:28:16Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=libmaa +pkgver=1.3.2 +pkgrel=1 +pkgdesc="Provides many low-level data structures which are helpful for writing compilers" +url="http://sourceforge.net/projects/dict/" +license=('GPL') +arch=('i686' 'x86_64') +depends=('glibc') +makedepends=('flex') +options=('!libtool') +source=("http://downloads.sourceforge.net/dict/${pkgname}-${pkgver}.tar.gz") +md5sums=('01dab2cde2e0a322653e45bfa63537ee') + +build() { + cd "${srcdir}/$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/$pkgname-$pkgver" + make DESTDIR="${pkgdir}" install +} |