Files
snap/SRC/snap/Makefile
Jay Larson 915fb3e1f0 The following changes were made:
* snapinstall now has template system
  * added code to symlink modules to different compatible kernel versions
  * snap will now detect if kernel or module package
  * snap remove should clean up directories not in snap-base
  * snap now exports $VERSION for usher
  * snap verify now works - will verify all installed files for package
  * a number of other small fixes and tweaks
2018-04-06 12:42:17 -05:00

28 lines
1.1 KiB
Makefile

dirs:
install -d -v -m 755 $(DESTDIR)/etc/snap.d/templates
install -d -v -m 755 $(DESTDIR)/usr/bin
install -d -v -m 755 $(DESTDIR)/usr/share/snap
install -d -v -m 755 $(DESTDIR)/usr/lib/perl5/vendor_perl/5.24.0/Snap
files:
install -v -m 755 snap $(DESTDIR)/usr/bin/snap
install -v -m 755 snapinstall $(DESTDIR)/usr/bin/snapinstall
install -v -m 644 Makefile.skel \
$(DESTDIR)/usr/share/snap/Makefile.skel
install -v -m 644 Makefile.snaplinux \
$(DESTDIR)/usr/share/snap/Makefile.snaplinux
install -v -m 644 Commands.pm \
$(DESTDIR)/usr/lib/perl5/vendor_perl/5.24.0/Snap/Commands.pm
install -v -m 644 Package.pm \
$(DESTDIR)/usr/lib/perl5/vendor_perl/5.24.0/Snap/Package.pm
install -v -m 644 Sources.pm \
$(DESTDIR)/usr/lib/perl5/vendor_perl/5.24.0/Snap/Sources.pm
install -v -m 644 Snap.pm \
$(DESTDIR)/usr/lib/perl5/vendor_perl/5.24.0/Snap.pm
@find templates -type d -exec install {} -d -v -m 755 \
$(DESTDIR)/etc/snap.d/templates/{} \; && \
find templates -type f -exec install {} -v -m 644 \
$(DESTDIR)/etc/snap.d/templates/{} \;
install: dirs files