Date: Thursday, November 3, 2022 @ 23:47:28 Author: anthraxx Revision: 1341760
upgpkg: xsel 1.2.0.20200527-2: use git+https:// instead of git:// Modified: xsel/trunk/PKGBUILD ----------+ PKGBUILD | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-11-03 23:45:03 UTC (rev 1341759) +++ PKGBUILD 2022-11-03 23:47:28 UTC (rev 1341760) @@ -4,19 +4,19 @@ pkgname=xsel pkgver=1.2.0.20200527 _commit=062e6d373537c60829fa9b5dcddbcd942986b3c3 -pkgrel=1 -pkgdesc="XSel is a command-line program for getting and setting the contents of the X selection" +pkgrel=2 +pkgdesc="Command-line program for getting and setting the contents of the X selection" arch=(x86_64) -url="http://www.vergenet.net/~conrad/software/xsel/" +url="https://vergenet.net/~conrad/software/xsel/" license=("custom") depends=('libx11') makedepends=('libxt' 'git') -#source=(http://www.vergenet.net/~conrad/software/xsel/download/$pkgname-$pkgver.tar.gz) -source=("git://github.com/kfish/xsel.git#commit=${_commit}") -md5sums=('SKIP') +#source=(https://www.vergenet.net/~conrad/software/xsel/download/$pkgname-$pkgver.tar.gz) +source=("git+https://github.com/kfish/xsel.git#commit=${_commit}") +sha512sums=('SKIP') build() { - cd "$srcdir"/$pkgname + cd $pkgname touch README [ -x configure ] && ./configure --prefix=/usr || ./autogen.sh --prefix=/usr make @@ -23,7 +23,7 @@ } package() { - cd "$srcdir"/$pkgname + cd $pkgname make DESTDIR="$pkgdir" install mkdir -p "$pkgdir"/usr/share/licenses/xsel/ install -D -m0644 COPYING "$pkgdir"/usr/share/licenses/xsel/COPYING
