archlinux-pkgbuilds/nbimg/PKGBUILD

26 lines
680 B
Bash
Raw Normal View History

2013-01-07 13:36:03 +01:00
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
2013-01-07 13:20:52 +01:00
pkgname=nbimg
2013-01-07 13:36:03 +01:00
pkgver=1.2.1
2013-01-07 13:20:52 +01:00
pkgrel=1
pkgdesc="Allows to convert HTC Splash Screen images from NB to BMP and create NB splash screens from BMP format"
arch=('x86_64' 'i686')
url="http://pof.eslack.org/2008/07/03/nbimg-htc-splash-screen-tool/"
2013-01-07 13:36:03 +01:00
license=('GPL3')
source=(https://github.com/poliva/nbimg/archive/v${pkgver}.tar.gz Makefile.patch)
md5sums=('4cff29b5437f909bba470e4f2b0b861b'
'24fe500b72243ab6d52776583e64fdfa')
2013-01-07 13:20:52 +01:00
build() {
cd "$srcdir/$pkgname-$pkgver"
2013-01-07 13:36:03 +01:00
patch -p1 < ../Makefile.patch
make nbimg
2013-01-07 13:20:52 +01:00
}
package() {
cd "$srcdir/$pkgname-$pkgver"
2013-01-07 13:36:03 +01:00
make DESTDIR="$pkgdir/" install
2013-01-07 13:20:52 +01:00
}
# vim:set ts=2 sw=2 et: