summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
Diffstat (limited to 'pcr')
-rw-r--r--pcr/simg2img-git/PKGBUILD31
1 files changed, 0 insertions, 31 deletions
diff --git a/pcr/simg2img-git/PKGBUILD b/pcr/simg2img-git/PKGBUILD
deleted file mode 100644
index 866a49e36..000000000
--- a/pcr/simg2img-git/PKGBUILD
+++ /dev/null
@@ -1,31 +0,0 @@
-# Maintainer (Arch): Christoph Scholz <christoph.scholz@gmail.com>
-
-pkgname=simg2img-git
-pkgver=r24165.6da1ea0
-pkgrel=1
-pkgdesc="Tools to handle/convert Android sparse image file"
-arch=('i686' 'x86_64')
-url="https://android.googlesource.com/platform/system/core"
-license=('Apache')
-depends=('zlib')
-makedepends=('git')
-source=("git+https://android.googlesource.com/platform/system/core")
-md5sums=('SKIP')
-
-pkgver() {
- cd "${srcdir}/core/libsparse"
- printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
-}
-
-build() {
- cd "${srcdir}/core/libsparse"
- gcc -o simg2img -Iinclude simg2img.c sparse_crc32.c backed_block.c output_file.c sparse.c sparse_err.c sparse_read.c -lz
- gcc -o append2simg -Iinclude append2simg.c sparse_crc32.c backed_block.c output_file.c sparse.c sparse_err.c sparse_read.c -lz
- gcc -o img2simg -Iinclude img2simg.c sparse_crc32.c backed_block.c output_file.c sparse.c sparse_err.c sparse_read.c -lz
- gcc -o simg2simg -Iinclude simg2simg.c sparse_crc32.c backed_block.c output_file.c sparse.c sparse_err.c sparse_read.c -lz
-}
-
-package() {
- cd "${srcdir}/core/libsparse"
- install -D -m 755 -t "${pkgdir}/usr/bin/" simg2img append2simg img2simg simg2simg
-}