author | Robin Candau
<antiz@archlinux.org> 2024-06-25 20:44:09 UTC |
committer | Robin Candau
<antiz@archlinux.org> 2024-06-25 20:44:09 UTC |
parent | 6ffd9bd0d9c57bb423f70b02049aa7ce1fb050be |
.SRCINFO | +4 | -5 |
.nvchecker.toml | +6 | -0 |
PKGBUILD | +13 | -13 |
diff --git a/.SRCINFO b/.SRCINFO index 4b04190..6e71683 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,14 +1,13 @@ pkgbase = android-udev pkgdesc = Udev rules to connect Android devices to your linux box - pkgver = 20240221 + pkgver = 20240625 pkgrel = 1 url = https://github.com/M0Rf30/android-udev-rules arch = any - license = GPL3 + license = GPL-3.0-only depends = udev depends = libmtp - source = android-udev-20240221.zip::https://github.com/M0Rf30/android-udev-rules/archive/20240221.zip - sha1sums = 8cf393d053999f1eb6da706b43b6764dc68e2f7b - sha256sums = 66f7e14c57d597c60eae21901ef7b76e9bc4e253f5cc252717293b6b94788279 + source = android-udev-20240625.tar.gz::https://github.com/M0Rf30/android-udev-rules/archive/20240625.tar.gz + sha256sums = 9ed9f34b07082c9bb609c09a922dfd1e2df7cee7ccee0584bfc95da18c88eafe pkgname = android-udev diff --git a/.nvchecker.toml b/.nvchecker.toml new file mode 100644 index 0000000..31b78ea --- /dev/null +++ b/.nvchecker.toml @@ -0,0 +1,6 @@ +[android-udev] +source = "github" +github = "M0Rf30/android-udev-rules" +prefix = "v" +use_max_tag = true +exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*" diff --git a/PKGBUILD b/PKGBUILD index 0b6f7bf..42b1501 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,20 +1,20 @@ -# Maintainer: M0Rf30 +# Maintainer: Robin Candau <antiz@archlinux.org> +# Contributor: M0Rf30 # Contributor: marlock pkgname=android-udev -pkgver=20240221 +pkgver=20240625 pkgrel=1 -pkgdesc='Udev rules to connect Android devices to your linux box' -arch=(any) -url='https://github.com/M0Rf30/android-udev-rules' -license=(GPL3) -depends=(udev libmtp) -source=(android-udev-$pkgver.zip::https://github.com/M0Rf30/android-udev-rules/archive/$pkgver.zip) -sha1sums=('8cf393d053999f1eb6da706b43b6764dc68e2f7b') -sha256sums=('66f7e14c57d597c60eae21901ef7b76e9bc4e253f5cc252717293b6b94788279') +pkgdesc="Udev rules to connect Android devices to your linux box" +url="https://github.com/M0Rf30/android-udev-rules" +arch=('any') +license=('GPL-3.0-only') +depends=('udev' 'libmtp') +source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz") +sha256sums=('9ed9f34b07082c9bb609c09a922dfd1e2df7cee7ccee0584bfc95da18c88eafe') package() { - cd android-udev-rules-$pkgver - install -Dm 644 51-android.rules "$pkgdir"/usr/lib/udev/rules.d/51-android.rules - install -Dm 644 android-udev.conf "$pkgdir"/usr/lib/sysusers.d/android-udev.conf + cd "${pkgname}-rules-${pkgver}" + install -Dm 644 51-android.rules "${pkgdir}/usr/lib/udev/rules.d/51-android.rules" + install -Dm 644 android-udev.conf "${pkgdir}/usr/lib/sysusers.d/android-udev.conf" }