mirror of
https://github.com/archlinux/aur.git
synced 2026-02-28 08:54:17 +01:00
Adopting lpc21isp
This commit is contained in:
commit
8331db7b18
2 changed files with 42 additions and 0 deletions
13
.SRCINFO
Normal file
13
.SRCINFO
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
pkgbase = lpc21isp
|
||||
pkgdesc = In-circuit programming (ISP) tool for the NXP (Philips) LPC1300 / LPC1700 / LPC2000 series ARM7 / M0 / M3 microcontrollers
|
||||
pkgver = 1.97
|
||||
pkgrel = 1
|
||||
url = http://sourceforge.net/projects/lpc21isp/
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = LGPLv3
|
||||
source = http://downloads.sourceforge.net/project/lpc21isp/lpc21isp/1.97/lpc21isp_197.tar.gz
|
||||
md5sums = 0b286859a05a725647ecb1b3fe9ba606
|
||||
|
||||
pkgname = lpc21isp
|
||||
|
||||
29
PKGBUILD
Normal file
29
PKGBUILD
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# Contributor: Matias De la Puente <mfpuente.ar@gmail.com>
|
||||
# Maintainer: Nick Østergaard <oe.nick at gmail dot com>
|
||||
|
||||
pkgname=lpc21isp
|
||||
pkgver=1.97
|
||||
pkgrel=1
|
||||
pkgdesc="In-circuit programming (ISP) tool for the NXP (Philips) LPC1300 / LPC1700 / LPC2000 series ARM7 / M0 / M3 microcontrollers"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://sourceforge.net/projects/lpc21isp/"
|
||||
license=('LGPLv3')
|
||||
depends=()
|
||||
makedepends=()
|
||||
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/${pkgname}_${pkgver/./}.tar.gz)
|
||||
md5sums=('0b286859a05a725647ecb1b3fe9ba606')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/${pkgname}_${pkgver/./}"
|
||||
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/${pkgname}_${pkgver/./}"
|
||||
|
||||
install -d "$pkgdir/usr/bin"
|
||||
install -m755 lpc21isp "$pkgdir/usr/bin"
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
||||
Loading…
Add table
Reference in a new issue