summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 399c9c90ca02083e8f822fa81c3e0e39a45429ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# Maintainer: Kamil Cukrowski <kamil@dyzio.pl>
# picpgm author: Christian Stadler
pkgname=picpgm
pkgver=2.9.2.0
pkgrel=1
epoch=
pkgdesc="The PICPgm Development Programmer Software is a free and simple In-System-Development Programmer Software for the Microchip PIC microcontrollers."
arch=( "i686" "x86_64" )
url="picpgm.picprojects.net"
license=('GPL')
groups=()
depends=()
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("http://picpgm.picprojects.net/download/${pkgname}-${pkgver}-linux-i386.tar.gz")
noextract=()
md5sums=("b03387a00142f066f419f16adb64b28a")
validpgpkeys=()

package() {
	install -d $pkgdir/opt/picpgm
	install -d $pkgdir/usr/bin
	install -m 755 -o root -g root ./picpgm $pkgdir/opt/picpgm
	install -m 666 -o root -g root ./pgmifcfg.xml $pkgdir/opt/picpgm
	install -m 666 -o root -g root ./disclaimer.txt $pkgdir/opt/picpgm
	ln -s /opt/picpgm/picpgm  $pkgdir/usr/bin/picpgm
}