From f8db5d1487e8e0ceeb97a396e357c1540a047ed8 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 28 Sep 2011 23:14:32 +0000 Subject: Wed Sep 28 23:14:32 UTC 2011 --- community/ibus-unikey/PKGBUILD | 16 +++++++++------- community/premake/PKGBUILD | 25 +++++++++++++++++++++++++ community/premake3/PKGBUILD | 27 +++++++++++++++++++++++++++ 3 files changed, 61 insertions(+), 7 deletions(-) create mode 100644 community/premake/PKGBUILD create mode 100644 community/premake3/PKGBUILD (limited to 'community') diff --git a/community/ibus-unikey/PKGBUILD b/community/ibus-unikey/PKGBUILD index 5ec16a1b7..c59d1e645 100644 --- a/community/ibus-unikey/PKGBUILD +++ b/community/ibus-unikey/PKGBUILD @@ -1,19 +1,21 @@ +# $Id: PKGBUILD 55971 2011-09-27 06:50:51Z ebelanger $ # Maintainer: Thomas Dziedzic < gostrc at gmail > # Contributor: Trương Xuân Tính pkgname=ibus-unikey -pkgver=0.5.1 -pkgrel=2 +pkgver=0.6.0 +pkgrel=1 pkgdesc='IBus module for Vietnamese Keyboard' arch=('i686' 'x86_64') license=('GPL') url='http://code.google.com/p/ibus-unikey/' +depends=('ibus') +makedepends=('intltool') source=("http://ibus-unikey.googlecode.com/files/${pkgname}-${pkgver}.tar.gz") -md5sums=('0b8f79941dc3e9a4744d52e88e4401dc') -depends=('ibus' 'gconf' 'gmp') +md5sums=('cef0e737ea3fba5bf79642bfd85d44b3') build() { - cd ${pkgname}-${pkgver} + cd "${srcdir}/${pkgname}-${pkgver}" ./configure \ --prefix=/usr \ @@ -23,7 +25,7 @@ build() { } package() { - cd ${pkgname}-${pkgver} + cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR=${pkgdir} install + make DESTDIR="${pkgdir}" install } diff --git a/community/premake/PKGBUILD b/community/premake/PKGBUILD new file mode 100644 index 000000000..a239b435d --- /dev/null +++ b/community/premake/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Sven-Hendrik Haase +# Contributor: revel +# Contributor: Marcos J. S. Magalhaes + +pkgname=premake +pkgver=4.3 +pkgrel=1 +pkgdesc="A simple build configuration and project generation tool using lua" +arch=('i686' 'x86_64') +url="http://industriousone.com/premake" +license=('BSD') +provides=("premake4") +source=(http://downloads.sourceforge.net/project/premake/Premake/$pkgver/premake-$pkgver-src.zip) +md5sums=('8cfafee76f9665c93b2e9ad15b015eb7') + +build() { + cd $srcdir/premake-$pkgver/build/gmake.unix + + make +} + +package() { + install -dm755 ${pkgdir}/usr/bin + install -m755 $srcdir/premake-$pkgver/bin/release/premake4 ${pkgdir}/usr/bin +} diff --git a/community/premake3/PKGBUILD b/community/premake3/PKGBUILD new file mode 100644 index 000000000..ef6e87f4d --- /dev/null +++ b/community/premake3/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Sven-Hendrik Haase +# Contributor: Anders Bergh +# Contributor: Mildred +# Contributor: Daniel J Griffiths + +pkgname=premake3 +pkgver=3.7 +pkgrel=1 +pkgdesc="A simple build configuration and project generation tool using lua" +arch=('i686' 'x86_64') +url="http://premake.sourceforge.net" +license=('GPL') +makedepends=() +source=("http://downloads.sourceforge.net/sourceforge/premake/premake-src-${pkgver}.zip") +md5sums=('8d30dc5bbc52aad81abb1509c1dd7d8f') + +build() { + cd ${srcdir}/Premake-${pkgver} + + make +} + +package() { + cd ${srcdir}/Premake-${pkgver} + + install -Dm755 bin/premake ${pkgdir}/usr/bin/premake +} -- cgit v1.2.3-54-g00ecf