Merge branch 'master' of github.com:archlinuxarm/PKGBUILDs

This commit is contained in:
Stephen Oliver 2012-02-24 02:28:35 -05:00
commit ee10678e43
2 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,37 @@
# $Id: PKGBUILD 64356 2012-02-11 23:24:06Z allan $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - better flags replacement method that works for us
plugrel=1
pkgname=setconf
pkgver=0.3.2
pkgrel=4
pkgdesc="Utility to easily change settings in Makefiles and configuration files"
arch=('x86_64' 'i686')
url="http://setconf.roboticoverlords.org/"
license=('GPL')
depends=('pcre' 'gc')
makedepends=('shedskin>=0.9.1')
source=("http://setconf.roboticoverlords.org/$pkgname-$pkgver.tbz2")
sha256sums=('8b18e11da7adf78f2e21c39cfa949b178fa1b2f85e691b85be123023b7303f03')
build() {
cd "$srcdir/$pkgname-$pkgver"
shedskin "$pkgname.py"
sed -i 's/-march=native/${CFLAGS}/' Makefile
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
install -Dm644 "$pkgname.1.gz" "$pkgdir/usr/share/man/man1/$pkgname.1.gz"
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}
# vim:set ts=2 sw=2 et:

View file

@ -0,0 +1,36 @@
# $Id: PKGBUILD 146820 2012-01-18 18:28:11Z ibiru $
# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - libtoolize
plugrel=1
pkgname=clutter-gst
pkgver=1.4.6
pkgrel=1
pkgdesc="GStreamer bindings for clutter"
arch=('i686' 'x86_64')
url="http://www.clutter-project.org/"
license=('LGPL')
depends=('clutter' 'gstreamer0.10-base' 'libxdamage')
makedepends=('gobject-introspection' 'gtk-doc')
options=('!libtool')
source=(http://clutter-project.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
sha256sums=('5368ded143b2f73c3128315dab7b45c5dd8d681341cbae8f83664d2f9bbba3c3')
build() {
cd "$srcdir/$pkgname-$pkgver"
libtoolize --copy --force
./configure \
--prefix=/usr \
--sysconfdir=/etc
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="${pkgdir}" install
}
# vim:set ts=2 sw=2 et: