diff options
Diffstat (limited to 'community/ico2xpm/PKGBUILD')
-rw-r--r-- | community/ico2xpm/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/ico2xpm/PKGBUILD b/community/ico2xpm/PKGBUILD new file mode 100644 index 000000000..5d1ef58da --- /dev/null +++ b/community/ico2xpm/PKGBUILD @@ -0,0 +1,22 @@ +# Contributor: dibblethewrecker <dibblethewrecker.at.jiwe.org> +# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=ico2xpm +pkgver=1.2 +pkgrel=1 +pkgdesc="A utility which converts Windows icons into X pixmaps" +arch=('i686' 'x86_64') +url="http://ico2xpm.sourceforge.net/" +license=('GPL') +source=(http://downloads.sourceforge.net/ico2xpm/1.2/ico2xpm-1_2-src.tar.gz) +md5sums=('b3dbe027e2420ee33e57d67140f40896') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + make || return 1 +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + install -Dm755 ${pkgname} ${pkgdir}/usr/bin/${pkgname} +} |