mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
20 lines
603 B
Bash
20 lines
603 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Contributor: William Rea <sillywilly@gmail.com>
|
||
|
pkgname=icon-slicer
|
||
|
pkgver=0.3
|
||
|
pkgrel=2
|
||
|
pkgdesc="A utility for generating icon themes and libXcursor cursor themes"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://freedesktop.org/wiki/Software_2ficon_2dslicer"
|
||
|
license=("GPL")
|
||
|
depends=('gtk2' 'popt')
|
||
|
source=(http://freedesktop.org/software/$pkgname/releases/icon-slicer-$pkgver.tar.gz)
|
||
|
md5sums=('5c5374d4f265b0abe4daef1d03f87104')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/icon-slicer-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|