mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
19 lines
564 B
Bash
19 lines
564 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Contributor: dibblethewrecker <dibblethewrecker.at.jiwe.org>
|
|
|
|
pkgname=ico2xpm
|
|
pkgver=1.1
|
|
pkgrel=1
|
|
pkgdesc="a utility which converts Windows icons into X pixmaps"
|
|
arch=('i686' 'x86_64')
|
|
url="http://freshmeat.net/projects/ixo2xpm/"
|
|
license=('GPL')
|
|
source=(http://freshmeat.net/redir/ixo2xpm/17942/url_tgz/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('ed58ea52c0b20796aa9b7ba3e4e241cb')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure
|
|
make || return 1
|
|
install -D -m755 $pkgname $startdir/pkg/usr/bin/$pkgname
|
|
}
|