diff options
Diffstat (limited to '~fauno/ethos/PKGBUILD')
-rw-r--r-- | ~fauno/ethos/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/~fauno/ethos/PKGBUILD b/~fauno/ethos/PKGBUILD new file mode 100644 index 000000000..f05c8fa8b --- /dev/null +++ b/~fauno/ethos/PKGBUILD @@ -0,0 +1,24 @@ +# Contributor: yannsen <ynnsen@gmail.com> +pkgname=ethos +pkgver=0.2.2 +pkgrel=6 +arch=('i686' 'x86_64') +pkgdesc="Plugin framework for GLib" +url="http://git.dronelabs.com/ethos/about/" +license="LGPL" +depends=(python2 gtk2) +makedepends=(intltool pygtk) +source=(http://ftp.dronelabs.com/sources/$pkgname/0.2/$pkgname-$pkgver.tar.gz) +md5sums=('36cf1ef444a224556bba4d441c400300') +options=(!libtool) + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install +} |