mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
added community/bamf
This commit is contained in:
parent
df60ccca18
commit
703327b096
1 changed files with 34 additions and 0 deletions
34
community/bamf/PKGBUILD
Normal file
34
community/bamf/PKGBUILD
Normal file
|
@ -0,0 +1,34 @@
|
|||
# $Id$
|
||||
# Maintainer: Maxime Gauduin <alucryd at gmail dot com>
|
||||
# Contributor: Balló György <ballogyor+arch at gmail dot com>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - use --enable-compile-warnings=no
|
||||
|
||||
pkgname=bamf
|
||||
pkgver=0.5.0
|
||||
pkgrel=2
|
||||
pkgdesc="Application matching framework"
|
||||
arch=('i686' 'x86_64')
|
||||
url="https://launchpad.net/bamf"
|
||||
license=('GPL')
|
||||
depends=('libgtop' 'libwnck3')
|
||||
makedepends=('gobject-introspection' 'python2-lxml' 'vala')
|
||||
source=("http://launchpad.net/${pkgname}/${pkgver%.*}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz")
|
||||
sha256sums=('93b1acced96d32b36270cf18feb2761014ce2226814303c632448f717a8f9113')
|
||||
|
||||
build() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
|
||||
export PYTHON='/usr/bin/python2'
|
||||
./configure --prefix='/usr' --sysconfdir='/etc' --localstatedir='/var' --libexecdir="/usr/lib/${pkgname}" --disable-{static,webapps} --enable-compile-warnings=no
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${pkgbase}-${pkgver}
|
||||
|
||||
make DESTDIR="${pkgdir}" install
|
||||
}
|
||||
|
||||
# vim: ts=2 sw=2 et:
|
Loading…
Reference in a new issue