mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
688 B
Bash
22 lines
688 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
|
||
|
|
||
|
pkgname=icoconvert
|
||
|
pkgver=2.0
|
||
|
pkgrel=3
|
||
|
pkgdesc="Converts Windows .ico icon files to .png images. All .ico file types are supported, including transparency."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.mox.net/"
|
||
|
license=('GPL')
|
||
|
depends=('gd>=2.0' 'libjpeg')
|
||
|
source=(http://ghost1227.com/files/icoconvert-$pkgver.tar.gz)
|
||
|
#source=(http://www.mox.net/downloads/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('56fe4474c8eaae2c8b886331cda41aca')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
rm icoconvert
|
||
|
make || return 1
|
||
|
/bin/install -D -m755 icoconvert $startdir/pkg/usr/bin/icoconvert
|
||
|
}
|