Add 'nbimg/' from commit 'c8be6b3f4d204af4bc468d49f1ef6f8c4de1bab4'

git-subtree-dir: nbimg
git-subtree-mainline: 70b09f23c1
git-subtree-split: c8be6b3f4d
This commit is contained in:
Cedric Girard 2019-02-14 15:35:32 +01:00
commit 4785b7c331
3 changed files with 52 additions and 0 deletions

15
nbimg/.SRCINFO Normal file
View File

@ -0,0 +1,15 @@
pkgbase = nbimg
pkgdesc = Allows to convert HTC Splash Screen images from NB to BMP and create NB splash screens from BMP format
pkgver = 1.2.1
pkgrel = 1
url = http://pof.eslack.org/2008/07/03/nbimg-htc-splash-screen-tool/
arch = x86_64
arch = i686
license = GPL3
source = https://github.com/poliva/nbimg/archive/v1.2.1.tar.gz
source = Makefile.patch
md5sums = 4cff29b5437f909bba470e4f2b0b861b
md5sums = 24fe500b72243ab6d52776583e64fdfa
pkgname = nbimg

12
nbimg/Makefile.patch Normal file
View File

@ -0,0 +1,12 @@
diff -Naur nbimg-1.2.1/Makefile nbimg-1.2.1.patched/Makefile
--- nbimg-1.2.1/Makefile 2012-06-21 09:40:47.000000000 +0200
+++ nbimg-1.2.1.patched/Makefile 2013-01-07 13:32:48.282389871 +0100
@@ -20,7 +20,7 @@
win32:
i586-mingw32msvc-gcc $(CFLAGS) $(PROGNAME).c -o $(PROGNAME).exe
-install: all
+install:
mkdir -p $(bindir)
$(INSTALL) $(PROGNAME) $(bindir)/$(PROGNAME)
mkdir -p $(docdir)/$(PROGNAME)/

25
nbimg/PKGBUILD Normal file
View File

@ -0,0 +1,25 @@
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
pkgname=nbimg
pkgver=1.2.1
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/"
license=('GPL3')
source=(https://github.com/poliva/nbimg/archive/v${pkgver}.tar.gz Makefile.patch)
md5sums=('4cff29b5437f909bba470e4f2b0b861b'
'24fe500b72243ab6d52776583e64fdfa')
build() {
cd "$srcdir/$pkgname-$pkgver"
patch -p1 < ../Makefile.patch
make nbimg
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
# vim:set ts=2 sw=2 et: