diff options
Diffstat (limited to 'community/ragel/PKGBUILD')
-rw-r--r-- | community/ragel/PKGBUILD | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/community/ragel/PKGBUILD b/community/ragel/PKGBUILD index fbff09e27..5f3a72978 100644 --- a/community/ragel/PKGBUILD +++ b/community/ragel/PKGBUILD @@ -10,16 +10,18 @@ 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') +arch=('i686' 'x86_64' 'mips64el') url="http://www.complang.org/ragel/" license=('GPL') depends=('gcc-libs') -source=("http://www.complang.org/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('f4423e0d8a6538dd4e61498fcfad3cec') +source=("http://www.complang.org/$pkgname/$pkgname-$pkgver.tar.gz" + "ragel-6.7-gcc-4.7.patch") +md5sums=('f4423e0d8a6538dd4e61498fcfad3cec' + 'bcbc047873e09eef04900142fefa75f1') build() { cd "$srcdir/$pkgname-$pkgver" - + patch -Np1 -i ${srcdir}/ragel-6.7-gcc-4.7.patch ./configure --prefix=/usr make } |