diff options
Diffstat (limited to 'community/gpsim/PKGBUILD')
-rw-r--r-- | community/gpsim/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/gpsim/PKGBUILD b/community/gpsim/PKGBUILD new file mode 100644 index 000000000..311a70a32 --- /dev/null +++ b/community/gpsim/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 63608 2012-02-05 12:00:08Z ibiru $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: mickael9 <mickael9 at gmail dot com> + +pkgname=gpsim +pkgver=0.26.1 +pkgrel=2 +pkgdesc="A full-featured software simulator for Microchip PIC microcontrollers" +arch=(i686 x86_64) +url="http://gpsim.sourceforge.net/" +license=(GPL) +depends=('gtk2+extra' 'popt') +makedepends=('gtk2+extra') +options=('!libtool') +source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz) +md5sums=('c994c23d2d75056dbefcf5d1d63596d7') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr + make + make DESTDIR=${pkgdir} install +} |