[pacman-dev] PKGBUILD.proto - Take2

Jud jud at judfilm.net
Sat Dec 6 22:58:38 EST 2008


Hi,

Edit: Take2, changed the install line

Dan suggested I send this to the pacman-dev list.

After completing some research and asking alot of questions I present
some minor changes to PKGBUILD.proto supplied as a .diff to be merged
after your approval. I believe it helps the intended audience create a
better PKGBUILD in less time according to the latest Arch Packaging
Standards.

Cheers
Jud

Inline:
--- PKGBUILD.proto	2008-12-05 23:32:33.000005000 +1000
+++ PKGBUILD.proto.new	2008-12-07 13:49:43.889569135 +1000
@@ -3,13 +3,15 @@
 # NOTE: Please fill out the license field for your package! If it is
unknown, # then please put 'unknown'.
 
+
 # Contributor: Your Name <youremail at domain.com>
+
 pkgname=NAME
-pkgver=VERSION
+pkgver=VERSION # Note: if pkgver is '0.99-10' then use an underscore,
i.e. '0.99_10' pkgrel=1
 pkgdesc=""
-arch=()
-url=""
+url="http://ADDRESS/"
+arch=('i686' 'x86_64')
 license=('GPL')
 groups=()
 depends=()
@@ -20,17 +22,13 @@
 replaces=()
 backup=()
 options=()
-install=
-source=($pkgname-$pkgver.tar.gz)
-noextract=()
-md5sums=() #generate with 'makepkg -g'
+install=${pkgname}.install
+source=(http://ADDRESS/TO/FILE/${pkgname}-${pkgver}.tar.gz)
+md5sums=() # Generate with 'makepkg -g'
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
+  cd ${srcdir}${pkgname}-${pkgver}
+  ./configure --prefix=usr
   make || return 1
-  make DESTDIR="$pkgdir/" install
+  make DESTDIR=${pkgdir} install || return 1
 }
-
-# vim:set ts=2 sw=2 et:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: PKGBUILD.proto.diff
Type: text/x-patch
Size: 1094 bytes
Desc: not available
URL: <http://archlinux.org/pipermail/pacman-dev/attachments/20081207/8eaee355/attachment.bin>


More information about the pacman-dev mailing list