mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-21 19:44:47 +00:00
22 lines
526 B
Plaintext
Executable File
22 lines
526 B
Plaintext
Executable File
# description : Library facilitates the common operations with sizes in bytes
|
|
# homepage : https://github.com/rhinstaller/libbytesize
|
|
# maintainer : emmett1, emmett1.2miligrams at gmail.com
|
|
# depends : pcre2
|
|
|
|
name=libbytesize
|
|
version=2.1
|
|
release=1
|
|
source=(https://github.com/storaged-project/$name/releases/download/$version/$name-$version.tar.gz)
|
|
md5sum=(145dd7e853f7b7cbe3bb264eff306a4b)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share/{locale,gtk-doc}
|
|
}
|
|
|