blob: 5ca48073eafd50e447f284efba0acc08704efb65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
MAKEDEPS="make "
DEPS="glibc sh"
PKG_VER=1.6.3
SOURCE=https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git/snapshot/keyutils-$PKG_VER.tar.gz
DESC="Linux Key Management Utils"
build () {
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|