123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- set -e
- program=parted
- version=3.5
- release=1
- pkgcategory=tools
- tarname=${program}-${version}.tar.xz
- fetch=https://ftp.gnu.org/gnu/parted/$tarname
- description="
- GNU Parted manipulates partition tables.
- This is useful for creating space for new operating systems,
- reorganizing disk usage, copying data on hard disks and disk
- imaging. The package contains a library, libparted, as well
- as a command-line frontend, parted, which can also be used
- in scripts.
- "
- homepage=https://www.gnu.org/software/parted/
- license=GPLv3+
- docs="AUTHORS BUGS COPYING ChangeLog NEWS README THANKS TODO doc/API doc/FAT"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- unpack "${tardir}/$tarname"
- cd "$srcdir"
-
- chmod -R u+w,go-w,a+rX-s .
- ./configure CPPFLAGS="$QICPPFLAGS" \
- CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
- $configure_args \
- --libdir=/usr/lib${libSuffix} \
- --infodir=$infodir \
- --mandir=$mandir \
- --docdir=$docsdir \
- --enable-static=no \
- --enable-shared=yes \
- --enable-device-mapper \
- --enable-part-static \
- --enable-pc98=no \
- --enable-Werror=no \
- --build="$(gcc -dumpmachine)"
- make -j${jobs} V=1
- make -j${jobs} DESTDIR="$destdir" install
-
- if test -d "${destdir}/$infodir"
- then
- rm -f "${destdir}/${infodir}/dir"
- lzip -9 "${destdir}/${infodir}"/*
- fi
-
- if test -d "${destdir}/$mandir"
- then
- (
- cd "${destdir}/$mandir"
- find . -type f -exec lzip -9 {} +
- find . -type l | while read -r file
- do
- ln -sf "$(readlink -- "$file").lz" "${file}.lz"
- rm -- "$file"
- done
- )
- fi
-
- mkdir -p "${destdir}/$docsdir"
- cp -p $docs "${destdir}/$docsdir"
- }
|