summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 25791ee68929749c2f8527c7b7c133c68f62a626 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Asher Lieber <lieber dot asher at gmail dot com>
pkgname='libmemcarve'
pkgver=1.3.1
pkgrel=1
pkgdesc="A simple to use library that makes it easy to access the virtual memory of any process"
arch=('any')
url="https://github.com/asherlie/memcarve"
license=('GPL')
provides=('libmemcarve')
source=("$pkgname-$pkgver::git+https://github.com/asherlie/memcarve")
noextract=()
md5sums=('SKIP')

build() {
  cd "$pkgname-$pkgver"
  make
}

package() {
  cd "$pkgname-$pkgver"
  make install
}