mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
28 lines
578 B
Bash
28 lines
578 B
Bash
pkgname=icoutils
|
|
pkgver=0.31.2
|
|
pkgrel=1
|
|
pkgdesc='Extracts and converts images in MS Windows(R) icon and cursor files.'
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
url='http://www.nongnu.org/icoutils/'
|
|
depends=('libpng>=1.0.0' 'perl-libwww>=5.64')
|
|
categories=('graphics')
|
|
source=("http://savannah.nongnu.org/download/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('adf40f06b43c64b9ffcf2ead6ef3db17')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
}
|