blob: c8c502550068acaee1450a2434fef6e60e696c7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Maintainer: Bruno Goncalves <bigbruno@gmail.com>
pkgname=waydroid-biglinux
pkgver=$(date +%y.%m.%d)
pkgrel=$(date +%H%M)
arch=('any')
license=('GPL')
url="https://github.com/biglinux/waydroid-biglinux"
pkgdesc="Simplify waydroid usage"
source=("git+https://github.com/biglinux/waydroid-biglinux.git")
depends=(waydroid python-pyclip bigbashview)
md5sums=(SKIP)
package() {
# Verify default folder
if [ -d "${srcdir}/${pkgname}/${pkgname}" ]; then
InternalDir="${srcdir}/${pkgname}/${pkgname}"
else
InternalDir="${srcdir}/${pkgname}"
fi
# Copy files
if [ -d "${InternalDir}/usr" ]; then
cp -r "${InternalDir}/usr" "${pkgdir}/"
fi
if [ -d "${InternalDir}/etc" ]; then
cp -r "${InternalDir}/etc" "${pkgdir}/"
fi
if [ -d "${InternalDir}/opt" ]; then
cp -r "${InternalDir}/opt" "${pkgdir}/"
fi
}
|