* Added URL, REPO, and BRIEF to Makefile * usher now uses /bin/sh * Removed TARGET from usher
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# This file is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation here:
|
|
# (http://www.gnu.org/licenses/gpl-2.0.html)
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
DEPENDS = coreutils,cpio,eudev,gzip,perl,psmisc,sed,util-linux
|
|
ARCH = x86_64
|
|
URL = http://snaplinux.org
|
|
REPO = core
|
|
BRIEF = Scripts to build initrd image
|
|
DESC = This package includes scripts to build an initrd image
|
|
SNAPVER = 0
|
|
|
|
ARCHIVE := ''
|
|
SRCDIR := $(PWD)/SRC/mkinitramfs
|
|
PATCHDIR := $(PWD)/SRC/patches
|
|
VERSION := $(shell grep 'VERSION =>' $(SRCDIR)/mkinitramfs| \
|
|
sed "s/.*=>\s\+'\|'.*//g")-$(SNAPVER)
|
|
|
|
include /usr/share/snap/Makefile.snaplinux
|
|
|
|
$(ROOT): $(SRCDIR)/Makefile
|
|
@if [ -d $(ROOT) ]; then \
|
|
touch $(ROOT); \
|
|
else \
|
|
mkdir -v $(ROOT); \
|
|
fi
|
|
|
|
@cd $(SRCDIR) && make install DESTDIR=$(ROOT)
|
|
|
|
clean:
|
|
@rm -rvf $(ROOT) \
|
|
$(SNAPINFO) \
|
|
$(MANIFEST) \
|
|
$(FILES)
|
|
|