add to jenkins
This commit is contained in:
parent
71902297cc
commit
e7c50c0698
10
.SRCINFO
10
.SRCINFO
@ -1,4 +1,4 @@
|
|||||||
pkgbase = abootimg-git
|
pkgbase = abootimg
|
||||||
pkgdesc = A tool to read/write/update android boot images
|
pkgdesc = A tool to read/write/update android boot images
|
||||||
pkgver = r38.7e127fe
|
pkgver = r38.7e127fe
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
@ -7,15 +7,15 @@ pkgbase = abootimg-git
|
|||||||
arch = x86_64
|
arch = x86_64
|
||||||
arch = arm
|
arch = arm
|
||||||
arch = armv7h
|
arch = armv7h
|
||||||
|
arch = aarch64
|
||||||
license = GPL
|
license = GPL
|
||||||
makedepends = git
|
makedepends = git
|
||||||
depends = util-linux
|
depends = util-linux
|
||||||
depends = cpio
|
depends = cpio
|
||||||
provides = abootimg
|
provides = abootimg-git
|
||||||
source = git+https://github.com/ggrandou/abootimg.git
|
source = git+https://gitea.classfun.cn:4443/mirrors/abootimg.git
|
||||||
source = no-initrd.patch
|
source = no-initrd.patch
|
||||||
sha256sums = SKIP
|
sha256sums = SKIP
|
||||||
sha256sums = 5fe9400e71f1ade170c1e0e99f343881edca2022300c7e7a1d34d776c22cc126
|
sha256sums = 5fe9400e71f1ade170c1e0e99f343881edca2022300c7e7a1d34d776c22cc126
|
||||||
|
|
||||||
pkgname = abootimg-git
|
pkgname = abootimg
|
||||||
|
|
||||||
|
53
.gitignore
vendored
Normal file
53
.gitignore
vendored
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
*.rej
|
||||||
|
*.orig
|
||||||
|
*.swp
|
||||||
|
*.save*
|
||||||
|
*.o
|
||||||
|
*.a
|
||||||
|
*.out
|
||||||
|
*.lib
|
||||||
|
*.obj
|
||||||
|
*.dll
|
||||||
|
*.so
|
||||||
|
*.exe
|
||||||
|
*.gch
|
||||||
|
*.plist
|
||||||
|
*.mo
|
||||||
|
*.gmo
|
||||||
|
*.fd
|
||||||
|
*.iso
|
||||||
|
*.img
|
||||||
|
*.img.*
|
||||||
|
*.qcow2
|
||||||
|
*.vhd
|
||||||
|
*.vdi
|
||||||
|
*.vmdk
|
||||||
|
*.cpio
|
||||||
|
*.cpio.*
|
||||||
|
*.ttf
|
||||||
|
*.ttc
|
||||||
|
*.pcf
|
||||||
|
*.pcf.*
|
||||||
|
*.efi
|
||||||
|
*.pkg.tar.*
|
||||||
|
vgcore.*
|
||||||
|
/build*
|
||||||
|
initramfs*.*
|
||||||
|
initrd*.*
|
||||||
|
System.map*
|
||||||
|
/cmake-build-*
|
||||||
|
/.idea
|
||||||
|
/.vscode
|
||||||
|
/.cache
|
||||||
|
CMakeCache.txt
|
||||||
|
CMakeFiles
|
||||||
|
Makefile
|
||||||
|
cmake_install.cmake
|
||||||
|
node_modules
|
||||||
|
package.json
|
||||||
|
package-lock.json
|
||||||
|
fonts.scale
|
||||||
|
fonts.dir
|
||||||
|
/src
|
||||||
|
/pkg
|
||||||
|
/abootimg
|
9
PKGBUILD
9
PKGBUILD
@ -1,19 +1,20 @@
|
|||||||
|
# Maintainer: BigfootACA <BigfootACA@classfun.cn>
|
||||||
# Maintainer: Bailey Fox <bfox200012@gmail.com>
|
# Maintainer: Bailey Fox <bfox200012@gmail.com>
|
||||||
# Contributor: ajs124 < aur AT ajs124 DOT de >
|
# Contributor: ajs124 < aur AT ajs124 DOT de >
|
||||||
# Contributor: Benoit Favre <benoit.favre@gmail.com>
|
# Contributor: Benoit Favre <benoit.favre@gmail.com>
|
||||||
# Contributor: Thomas Hebb <tommyhebb@gmail.com>
|
# Contributor: Thomas Hebb <tommyhebb@gmail.com>
|
||||||
|
|
||||||
pkgname=abootimg-git
|
pkgname=abootimg
|
||||||
pkgver=r38.7e127fe
|
pkgver=r38.7e127fe
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="A tool to read/write/update android boot images"
|
pkgdesc="A tool to read/write/update android boot images"
|
||||||
arch=('i686' 'x86_64' 'arm' 'armv7h')
|
arch=('i686' 'x86_64' 'arm' 'armv7h' 'aarch64')
|
||||||
url="https://github.com/ggrandou/abootimg"
|
url="https://github.com/ggrandou/abootimg"
|
||||||
license=('GPL')
|
license=('GPL')
|
||||||
depends=('util-linux' 'cpio')
|
depends=('util-linux' 'cpio')
|
||||||
makedepends=('git')
|
makedepends=('git')
|
||||||
provides=('abootimg')
|
provides=('abootimg-git')
|
||||||
source=('git+https://github.com/ggrandou/abootimg.git'
|
source=('git+https://gitea.classfun.cn:4443/mirrors/abootimg.git'
|
||||||
'no-initrd.patch')
|
'no-initrd.patch')
|
||||||
sha256sums=('SKIP'
|
sha256sums=('SKIP'
|
||||||
'5fe9400e71f1ade170c1e0e99f343881edca2022300c7e7a1d34d776c22cc126')
|
'5fe9400e71f1ade170c1e0e99f343881edca2022300c7e7a1d34d776c22cc126')
|
||||||
|
Loading…
Reference in New Issue
Block a user