smlinux/base/eudev/eudev.SMBuild
SMLinux 2f32197590 -> Overhauled build files in base. Almost all variable names in all build files are now in lower case to
prevent accidents with the general build environment. More changes in the build system and other section
   build files to follow.
-> Fixed library path in base/libical build file to prevent creation of lib64 directory
-> Fixed code that searches for an SMBuild file inside a package installer when installing from a package
   using base/pkgtools's installpkg script
-> Added a missing brace in base/findutils build file
-> Upgraded base/ntfs-3g to 2021.8.22
-> Temporarily removed rm -f command used to discard man pages in base/openssl build file
-> Added if/else check in base/rust build file to only extract rust toolchain in the absence of
   rust installation on the system
-> Upgraded base/syssstat to 12.5.5
2022-02-13 13:46:58 +05:30

39 lines
875 B
Text
Executable file

app=eudev
version=3.2.9
build=1sml
homepage='https://wiki.gentoo.org/wiki/Eudev'
download='http://sources.buildroot.net/eudev/eudev-3.2.9.tar.gz'
desc="Independent fork of udev dynamic device manager by Gentoo devs"
requires="util-linux"
build() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
./configure \
--prefix="" \
--bindir=/bin \
--sbindir=/bin \
--sysconfdir=/etc \
--disable-introspection
make
make install DESTDIR=$pkg
mkdir -p $pkg/etc/udev/rules.d
cp $srcdir/*.rules $pkg/etc/udev/rules.d/
mv $pkg/share/pkgconfig/* $pkg/lib/pkgconfig/
cp COPYING $pkgdocs/
mkfinalpkg
}
sha512sums="
a239ca799e3b18bc058ab120dd8636e360ad9e579ea15d21718ac4eee7ad2a74720e83f66eb3dfaa22443f3ee8db64ef4e0d254dbcf98e2fbe37ecaec40075b1 eudev-3.2.9.tar.lz
"