libudev0-shim: initial commit

This commit is contained in:
Tim Biermann 2019-08-04 16:15:52 +02:00
parent 87a8fcfefa
commit 1467553d7c
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 26 additions and 0 deletions

4
libudev0-shim/.footprint Normal file
View File

@ -0,0 +1,4 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libudev.so.0 -> libudev.so.0.0.9999
-rwxr-xr-x root/root usr/lib/libudev.so.0.0.9999

5
libudev0-shim/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3/0nXod3C8Sy4MVLhcUu5URalJLr9n85x3/6vC1B1VnaaLdsiZfSZ0o18oKgEAZGUO0yIlT6DnEFt0gpA5IrfgI=
SHA256 (Pkgfile) = 91cf6ce19924547ad4a7da0104b95809f58edde1440c61359faeaffc5fa00d48
SHA256 (.footprint) = 3eba97a0c1b45f5546e9aad56b32e291f0f5c3c1f7f9fde31cdf614dff98af7c
SHA256 (libudev0-shim-1.tar.gz) = 24a1072fa437935d6c4e1d9c1ce84f4ad1d7be45026f6ee7b0b3d77ec0f66e3c

17
libudev0-shim/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: libudev.so.0 compatibility library for systems with newer udev versions
# URL: https://github.com/archlinux/libudev0-shim
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: eudev
name=libudev0-shim
version=1
release=1
source=(https://github.com/archlinux/libudev0-shim/archive/v$version/$name-$version.tar.gz)
build() {
cd $name-$version
unset LDFLAGS
make
install -Dm 755 libudev.so.0.0.9999 -t $PKG/usr/lib
ln -s libudev.so.0.0.9999 $PKG/usr/lib/libudev.so.0
}