mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
52 lines
1.6 KiB
Bash
52 lines
1.6 KiB
Bash
pkgname=unvanquished-data
|
|
pkgver=0.44.0
|
|
pkgrel=1
|
|
|
|
_gitver="archlinux/${pkgver}-${pkgrel}"
|
|
|
|
pkgdesc='Game assets for Unvanquished.'
|
|
arch=('any')
|
|
url='http://www.unvanquished.net'
|
|
license=('GPL3')
|
|
makedepends=('aria2')
|
|
source=("https://github.com/Unvanquished/Unvanquished/raw/${_gitver}/download-pk3-torrent.sh")
|
|
md5sums=('bb2d205411ab0b05e755abe06e8d38b3')
|
|
|
|
build() {
|
|
cd "${srcdir}"
|
|
|
|
#aria2/GnuTLS bug workaround
|
|
sed -i 's,https,http,' download-pk3-torrent.sh
|
|
|
|
chmod +x download-pk3-torrent.sh
|
|
}
|
|
|
|
package() {
|
|
# create installation directory
|
|
install -dm755 "${pkgdir}/usr/share/unvanquished/pkg/"
|
|
|
|
# use package source directory as the cache for the download script
|
|
if [ ! -d "${srcdir}/cache" ]; then
|
|
mkdir "${srcdir}/cache"
|
|
fi
|
|
|
|
# attempt to copy existing assets from the system, so they aren't redownloaded
|
|
if [ -d /var/lib/unvanquished/pkg ]; then
|
|
echo "Copying existing assets from the system (old location)..."
|
|
cp -r /var/lib/unvanquished/pkg/*.pk3 "${pkgdir}/usr/share/unvanquished/pkg/" || true
|
|
fi
|
|
if [ -d /usr/share/unvanquished/pkg ]; then
|
|
echo "Copying existing assets from the system..."
|
|
cp -r /usr/share/unvanquished/pkg/*.pk3 "${pkgdir}/usr/share/unvanquished/pkg/" || true
|
|
fi
|
|
|
|
# make the download script aware of copied assets, so it will remove unneeded ones
|
|
ls -c1 "${pkgdir}/usr/share/unvanquished/pkg/" > "${srcdir}/cache/last-assets.txt"
|
|
|
|
# remove old aria2 progress files in case the torrent itself was updated
|
|
rm -f "${srcdir}/cache/"*".aria2"
|
|
|
|
# download new or modified assets
|
|
./download-pk3-torrent.sh "${pkgdir}/usr/share/unvanquished/pkg/" "${srcdir}/cache" "${pkgver}"
|
|
}
|