PKGBUILDs/extra/gifsicle/PKGBUILD
2009-10-09 21:23:22 -05:00

22 lines
753 B
Bash

# $Id: PKGBUILD 48447 2009-08-02 03:43:40Z eric $
# Maintainer: Eric Belanger <eric@archlinux.org>
# Contributor: Frank Peters <frank.peters@comcast.net>
pkgname=gifsicle
pkgver=1.55
pkgrel=1
pkgdesc="A powerful command-line program for creating, editing, manipulating and getting information about GIF images and animations"
arch=('i686' 'x86_64')
url="http://www.lcdf.org/gifsicle/"
license=('GPL')
depends=('libsm' 'libx11')
source=(http://www.lcdf.org/${pkgname}/${pkgname}-${pkgver}.tar.gz)
md5sums=('366e63ac0aa4696397cb46a1384fd65a')
sha1sums=('74e6c25592d95f19ab36012b5a72ff149b53055c')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}