Last active
August 29, 2015 14:07
-
-
Save Narrat/7753eeb95062bce3c927 to your computer and use it in GitHub Desktop.
faucc PKGBuild update and improvement
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Laszlo Papp <djszapi at gmail com> | |
# Contributor: Thomas Karmann <[email protected]> | |
pkgname=faucc | |
pkgver=20120707 | |
pkgrel=1 | |
pkgdesc="Optimizing C compiler that can generate Intel code for 16bit/32bit CPUs." | |
arch=('i686' 'x86_64') | |
url="http://www3.informatik.uni-erlangen.de/Research/FAUcc/" | |
license=('GPL') | |
depends=('glibc') | |
makedepends=('docbook-xsl' 'xmlto') | |
source=(http://www3.informatik.uni-erlangen.de/Research/FAUcc/downloads/${pkgname}-${pkgver}.tar.gz) | |
md5sums=('808d1b2847a04e365818bb09932c2376') | |
build() { | |
cd ${srcdir}/${pkgname}-${pkgver} | |
./autogen.sh | |
./configure --prefix=/usr --mandir=/usr/share/man | |
make | |
} | |
package() { | |
cd ${srcdir}/${pkgname}-${pkgver} | |
make DESTDIR=${pkgdir} install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment