diff options
author | root <root@rshg054.dnsready.net> | 2013-01-01 00:07:09 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-01-01 00:07:09 -0800 |
commit | 26ac5932cb02318206fa6a528ed4bd82ad6af87c (patch) | |
tree | 311be9a081945c5faf92c1fb97b84a0190bdefff /community | |
parent | f503701b04bfc3fbec13acce2abfa9e8df56d2c0 (diff) |
Tue Jan 1 00:07:09 PST 2013
Diffstat (limited to 'community')
-rw-r--r-- | community/ibus-hangul/PKGBUILD | 11 | ||||
-rw-r--r-- | community/scrot/PKGBUILD | 29 |
2 files changed, 35 insertions, 5 deletions
diff --git a/community/ibus-hangul/PKGBUILD b/community/ibus-hangul/PKGBUILD index 925dc3ce1..0f19fbbbb 100644 --- a/community/ibus-hangul/PKGBUILD +++ b/community/ibus-hangul/PKGBUILD @@ -1,18 +1,19 @@ -# $Id: PKGBUILD 79159 2012-10-31 05:32:23Z ebelanger $ -# Maintainer: Thomas Dziedzic < gostrc at gmail > +# $Id: PKGBUILD 81828 2013-01-01 03:38:39Z fyan $ +# Maintainer: Felix Yan <felixonmars@gmail.com> +# Contributor: Thomas Dziedzic < gostrc at gmail > # Contributor: Radim Hvizdák <hvizdakr at gmail dot com> pkgname=ibus-hangul pkgver=1.4.1 -pkgrel=2 +pkgrel=3 pkgdesc='Korean input engine for IBus' arch=('i686' 'x86_64') url='http://ibus.googlecode.com' license=('GPL') -depends=('ibus' 'libhangul') +depends=('ibus' 'libhangul' 'iso-codes' 'pygtk' 'gtk-update-icon-cache') makedepends=('intltool') install=ibus-hangul.install -source=(http://ibus.googlecode.com/files/${pkgname}-${pkgver}.tar.gz) +source=("http://ibus.googlecode.com/files/${pkgname}-${pkgver}.tar.gz") sha1sums=('659899cf942a983fbd2ffbb4bd4f5ecd883f5c0a') build() { diff --git a/community/scrot/PKGBUILD b/community/scrot/PKGBUILD new file mode 100644 index 000000000..7282f7869 --- /dev/null +++ b/community/scrot/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 81818 2012-12-31 15:37:13Z dwallace $ +# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com> +# Contributor: Giovanni Scafora <giovanni@archlinux.org> + +pkgname=scrot +pkgver=0.8 +pkgrel=6 +pkgdesc="A simple command-line screenshot utility for X" +arch=('i686' 'x86_64') +url="http://scrot.sourcearchive.com/" +license=('MIT') +depends=('giblib') +source=("http://linuxbrit.co.uk/downloads/$pkgname-$pkgver.tar.gz") +md5sums=('ccae904d225609571bdd3b03445c1e88') + +build() { + cd $srcdir/$pkgname-$pkgver + + ./configure --prefix=/usr \ + --mandir=/usr/share/man + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + + make DESTDIR=$pkgdir docsdir=/usr/share/doc/scrot install + install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} |