diff options
author | root <root@rshg054.dnsready.net> | 2011-12-16 23:14:53 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-12-16 23:14:53 +0000 |
commit | 492f7c22a61fdb0488000da9f66d68e11bb43918 (patch) | |
tree | 4186fa7bc3f8d6b6e8bbf984b036a5478d63272f /community/ragel | |
parent | ac25f0b5aaf7aff394a8df695be995ec8463e264 (diff) |
Fri Dec 16 23:14:53 UTC 2011
Diffstat (limited to 'community/ragel')
-rw-r--r-- | community/ragel/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/community/ragel/PKGBUILD b/community/ragel/PKGBUILD new file mode 100644 index 000000000..fbff09e27 --- /dev/null +++ b/community/ragel/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 60639 2011-12-16 00:03:11Z tredaelli $ +# Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com> +# Contributor: Michael P <ptchinster@archlinux.us> +# Contributor: Roberto Alsina <ralsina@kde.org> +# Contributor: Will Chappell <mr.chapendi@gmail.com> +# Contributor: Jesse Young <jesse.young@gmail.com> +# Contributor: Gustavo Alvarez <sl1pkn07@gmail.com> + +pkgname=ragel +pkgver=6.7 +pkgrel=1 +pkgdesc="Compiles finite state machines from regular languages into executable C, C++, Objective-C, or D code." +arch=('i686' 'x86_64') +url="http://www.complang.org/ragel/" +license=('GPL') +depends=('gcc-libs') +source=("http://www.complang.org/$pkgname/$pkgname-$pkgver.tar.gz") +md5sums=('f4423e0d8a6538dd4e61498fcfad3cec') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir/" install +} + |