summaryrefslogtreecommitdiff
path: root/pcr/devmem/PKGBUILD
blob: 46fed6236d901f04c7e10e2f821d3a421dfbf7a6 (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
# Contributor (Arch)     : Brice Waegeneire < brice dot wge at gmail dot com >
# Contributor (Arch)     : Alexander Lam <lambchop468 *AT* gmail.com>
# Maintainer  (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp>

# parabola changes and rationale:
#  - no longer maintained by Arch / AUR

pkgname=devmem
pkgver=2
pkgrel=3
pkgdesc="A small utility to access /dev/mem and read/write to any memory location"
arch=('x86_64' 'i686' 'armv7h')
url="http://free-electrons.com/pub/mirror/devmem2.c"
license=('GPL2')
source=("http://free-electrons.com/pub/mirror/${pkgname}${pkgver}.c")

sha256sums=('3b15515693bae1ebd14d914e46d388edfec2175829ea1576a7a0c8606ebbe639')

build() {
  cd "$srcdir/"
  gcc devmem2.c -o devmem2
}

package() {
  install -D -m755 ${srcdir}/devmem2 ${pkgdir}/usr/bin/devmem2
}