summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChocobo12020-10-20 00:09:12 +0800
committerChocobo12020-10-20 00:11:27 +0800
commit4fbf7e6deddc9ffbd4a042a3f4a12d2af59f4c27 (patch)
tree68b597b5029c6e03bd1d413e5b7670897b0c385c
parenta1adf5dc0fedace68784d2fe2210392b28fa183c (diff)
downloadaur-4fbf7e6deddc9ffbd4a042a3f4a12d2af59f4c27.tar.gz
upgpkg: busybox-git 1.32.0.r51.g085f19cdf-1
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD11
2 files changed, 7 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f72985660393..608b620e2ce3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = busybox-git
pkgdesc = Tiny versions of many common UNIX utilities
- pkgver = 1.30.0.r84.gd712edc6d
+ pkgver = 1.32.0.r51.g085f19cdf
pkgrel = 1
url = https://www.busybox.net/
arch = i686
@@ -12,7 +12,7 @@ pkgbase = busybox-git
makedepends = ncurses
provides = busybox
conflicts = busybox
- source = git://git.busybox.net/busybox
+ source = git+https://git.busybox.net/busybox
source = config::https://git.archlinux.org/svntogit/community.git/plain/trunk/config?h=packages/busybox
sha256sums = SKIP
sha256sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index efeb4f9bf784..3457bd8959b6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=busybox-git
-pkgver=1.30.0.r84.gd712edc6d
+pkgver=1.32.0.r51.g085f19cdf
pkgrel=1
pkgdesc="Tiny versions of many common UNIX utilities"
arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@ license=('GPL')
makedepends=('git' 'kernel-headers-musl' 'musl' 'ncurses')
provides=('busybox')
conflicts=('busybox')
-source=("git://git.busybox.net/busybox"
+source=("git+https://git.busybox.net/busybox"
"config::https://git.archlinux.org/svntogit/community.git/plain/trunk/config?h=packages/busybox")
sha256sums=('SKIP'
'SKIP')
@@ -41,9 +41,8 @@ check() {
package() {
cd "busybox"
- install -Dm755 "busybox" "$pkgdir/usr/bin/busybox"
+ install -Dm755 "busybox" -t "$pkgdir/usr/bin"
- install -Dm644 "docs/busybox.1" "$pkgdir/usr/share/man/man1/busybox.1"
- install -Dm644 "docs/BusyBox.html" "$pkgdir/usr/share/doc/busybox/BusyBox.html"
- install -Dm644 "docs/BusyBox.txt" "$pkgdir/usr/share/doc/busybox/BusyBox.txt"
+ install -Dm644 "docs/busybox.1" -t "$pkgdir/usr/share/man/man1"
+ install -Dm644 "docs"/BusyBox.{html,txt} -t "$pkgdir/usr/share/doc/busybox"
}