summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-09-28 23:14:32 +0000
committerroot <root@rshg054.dnsready.net>2011-09-28 23:14:32 +0000
commitf8db5d1487e8e0ceeb97a396e357c1540a047ed8 (patch)
tree7ad8dee5bda1fe535c9139770dc7316f9b780818 /community
parentccb9d72bbf1ee4f7a54113eac76a16b0b5014869 (diff)
Wed Sep 28 23:14:32 UTC 2011
Diffstat (limited to 'community')
-rw-r--r--community/ibus-unikey/PKGBUILD16
-rw-r--r--community/premake/PKGBUILD25
-rw-r--r--community/premake3/PKGBUILD27
3 files changed, 61 insertions, 7 deletions
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 <xuantinh at gmail dot com>
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 <sh@lutzhaase.com>
+# Contributor: revel <revelΘmuub·net>
+# Contributor: Marcos J. S. Magalhaes <mjsmagalhaes ^dot^ insc _at_ gmail ~dot~ com>
+
+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 <sh@lutzhaase.com>
+# Contributor: Anders Bergh <anders1@gmail.com>
+# Contributor: Mildred <silkensedai@online.fr>
+# Contributor: Daniel J Griffiths <griffithsdj@archlinux.us>
+
+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
+}