diff options
Diffstat (limited to 'community/icoutils/PKGBUILD')
-rw-r--r-- | community/icoutils/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/community/icoutils/PKGBUILD b/community/icoutils/PKGBUILD new file mode 100644 index 000000000..d9c24c298 --- /dev/null +++ b/community/icoutils/PKGBUILD @@ -0,0 +1,30 @@ +# Contributor: Geoffroy Carrier <geoffroy.carrier@aur.archlinux.org> +# Contributor: neodreams <yanbrodeur@videotron.ca> +# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=icoutils +pkgver=0.29.1 +pkgrel=1 +pkgdesc='Extracts and converts images in MS Windows(R) icon and cursor files.' +arch=('i686' 'x86_64') +license=('GPL') +url='http://www.nongnu.org/icoutils/' +depends=('libpng>=1.0.0' 'perl-libwww>=5.64') +source=("http://savannah.nongnu.org/download/${pkgname}/${pkgname}-${pkgver}.tar.bz2") +md5sums=('b58f375e0f8731595e8d0ecdc3a0acb9') + +build() { + cd ${pkgname}-${pkgver} + + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +} |