desktop/icoutils/PKGBUILD

28 lines
578 B
Bash
Raw Normal View History

2011-02-25 04:52:29 +08:00
pkgname=icoutils
2017-03-13 08:53:30 +08:00
pkgver=0.31.2
2011-02-25 04:52:29 +08:00
pkgrel=1
pkgdesc='Extracts and converts images in MS Windows(R) icon and cursor files.'
2017-01-12 16:30:03 +08:00
arch=('x86_64')
2011-02-25 04:52:29 +08:00
license=('GPL')
url='http://www.nongnu.org/icoutils/'
depends=('libpng>=1.0.0' 'perl-libwww>=5.64')
categories=('graphics')
2011-02-25 04:52:29 +08:00
source=("http://savannah.nongnu.org/download/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
2017-03-13 08:53:30 +08:00
md5sums=('adf40f06b43c64b9ffcf2ead6ef3db17')
2011-02-25 04:52:29 +08:00
build() {
cd ${pkgname}-${pkgver}
./configure \
--prefix=/usr \
--mandir=/usr/share/man
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}