blob: aac15a2b26fc6cc2209e69b64dcd4f2b52e784d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Description: daemonless replacement for libudev
# URL: https://github.com/illiliti/libudev-zero
# Maintainer: Shokara Kou, kou at 13f0 dot net
# Depends on:
name=libudev-zero
version=1.0.1
release=1
source=(https://github.com/illiliti/$name/archive/refs/tags/$version.tar.gz)
build() {
cd $name-$version
make
make PREFIX=/usr DESTDIR=$PKG install
}
|