1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-02 01:20:54 +00:00

New port: sysutils/boot-extract

Utility to extract kernel and ramdisk from
an Android boot or recovery image file

WWW: https://github.com/csimmonds/boot-extract

PR:		239206
Submitted by:	Martin Filla <freebsd@sysctl.cz>
This commit is contained in:
Kurt Jaeger 2019-07-21 19:28:10 +00:00
parent 062692d7ee
commit fb25a0de07
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=507065
5 changed files with 48 additions and 0 deletions

View File

@ -107,6 +107,7 @@
SUBDIR += biosfont
SUBDIR += bkpupsd
SUBDIR += bksh
SUBDIR += boot-extract
SUBDIR += boxbackup-devel
SUBDIR += brasero
SUBDIR += bsd-splash-changer

View File

@ -0,0 +1,24 @@
# $FreeBSD$
PORTNAME= boot-extract
PORTVERSION= g20190614
CATEGORIES= sysutils
MAINTAINER= freebsd@sysctl.cz
COMMENT= Android Boot image extraction tool
LICENSE= GPLv2
USES= gmake
USE_GITHUB= yes
GH_ACCOUNT= csimmonds
GH_PROJECT= boot-extract
GH_TAGNAME= 486995f
PLIST_FILES= bin/boot-extract
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1563120360
SHA256 (csimmonds-boot-extract-g20190614-486995f_GH0.tar.gz) = 3dcdc36c308e6a8a76db8cb902c2162ee02d9bd06704c010c39ee15ea9b475ba
SIZE (csimmonds-boot-extract-g20190614-486995f_GH0.tar.gz) = 3785

View File

@ -0,0 +1,16 @@
--- Makefile.orig 2017-11-25 09:25:52 UTC
+++ Makefile
@@ -1,4 +1,5 @@
+
CFLAGS=-Wall
PROGS=boot-extract
@@ -10,3 +11,7 @@ clean:
rm -f *.o
rm -f $(PROGS)
+install: boot-extract
+
+.PHONY: all clean install
+

View File

@ -0,0 +1,4 @@
Utility to extract kernel and ramdisk from
an Android boot or recovery image file
WWW: https://github.com/csimmonds/boot-extract