mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 23:22:24 +01:00
This commit updates $license variable in all APKBUILDs to comply with short names specified by SPDX version 3.0 [1] where possible. It was done using find-and-replace method on substrings inside $license variables. Only license names were updated, not "expressions" specifying relation between the licenses (e.g. "X and Y", "X or Y", "X and (Y or Z)") or exceptions (e.g. "X with exceptions"). Many licenses have a version or multiple variants, e.g. MPL-2.0, BSD-2-Clause, BSD-3-Clause. However, $license in many aports do not contain license version or variant. Since there's no way how to infer this information just from abuild, it were left without the variant suffix or version, i.e. non SPDX compliant. GNU licenses (AGPL, GFDL, GPL, LGPL) are especially complicated. They exist in two variants: -only (formerly e.g. GPL-2.0) and -or-later (formerly e.g. GPL-2.0+). We did not systematically noted distinguish between these variants, so GPL-2.0, GPL2, GPLv2 etc. may mean GPL-2.0-only or GPL-2.0-or-later. Thus GNU licenses without "+" (e.g. GPL2+) were left without the variant suffix, i.e. non SPDX compliant. Note: This commit just fixes format of the license names, no verification has been done if the specified license information is actually correct! [1]: https://spdx.org/licenses/
62 lines
2.0 KiB
Plaintext
62 lines
2.0 KiB
Plaintext
# Contributor: Stuart Cardall <developer@it-offshore.co.uk>
|
|
# Maintainer: Stuart Cardall <developer@it-offshore.co.uk>
|
|
pkgname=udevil
|
|
pkgver=0.4.4
|
|
pkgrel=2
|
|
pkgdesc="Mount / unmount removable devices without a password (udisks alternative)"
|
|
url="http://ignorantguru.github.io/udevil"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
makedepends="$depends_dev glib-dev eudev-dev intltool"
|
|
install="$pkgname.pre-install"
|
|
subpackages="$pkgname-lang $pkgname-doc"
|
|
pkggroups="plugdev"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/IgnorantGuru/$pkgname/archive/$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-systemd || return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make -j1 DESTDIR="$pkgdir" install || return 1
|
|
chown root:plugdev "$pkgdir"/usr/bin/udevil || return 1
|
|
chmod u+s,go-s,o-x "$pkgdir"/usr/bin/udevil # remove SUID bit
|
|
mkdir -p "$pkgdir/usr/share/apk-tools/$pkgname"
|
|
# chmod ugo-s,ugo+x "$pkgdir"/usr/bin/udevil #remove SUID bit completely
|
|
# post-install message
|
|
mkdir -p "$pkgdir/usr/share/doc/$pkgname"
|
|
cat > $pkgdir/usr/share/doc/$pkgname/README.alpine <<EOF
|
|
To mount / unmount devices without the root password: add your user account to the 'plugdev' group.
|
|
|
|
Optional dependencies:
|
|
|
|
zenity: (devmon popups)
|
|
davfs2: (mount WebDAV resources)
|
|
cifs-utils: (mounting samba shares)
|
|
curlftpfs: (mounting ftp shares)
|
|
nfs-utils: (mounting nfs shares)
|
|
sshfs-fuse: (mounting sftp shares)
|
|
eject: (eject via devmon)
|
|
EOF
|
|
}
|
|
|
|
md5sums="281aa065d92c679cb41728069e72b272 udevil-0.4.4.tar.gz"
|
|
sha256sums="ad2fd8375bd62622718a04235e9772119459089938dbb78e657955e595822b7c udevil-0.4.4.tar.gz"
|
|
sha512sums="adce4916e06d1cc4965521abbcbc2901e53930691167f431cb18e28d3ef8bde740e95a6a5f40dfc58dfd7b4b661b4475d3dd2b6174a5d7a55ae7c65629b82327 udevil-0.4.4.tar.gz"
|