Skip to content
This repository was archived by the owner on Aug 12, 2020. It is now read-only.

Commit 9434cf3

Browse files
committed
Create Makefile
1 parent e4d26d1 commit 9434cf3

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Makefile

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
USE_PKGBUILD=1
2+
include /usr/local/share/luggage/luggage.make
3+
PACKAGE_VERSION=1.0
4+
TITLE=Outset-SetupAssistant
5+
REVERSE_DOMAIN=org.company.pkg
6+
PAYLOAD= \
7+
pack-usr-local-outset-everyboot-scripts-setup_assistant_profiler.py \
8+
pack-library-profiles-SetupAssistant.mobileconfig
9+
10+
l_usr_local_outset_everyboot_scripts: l_usr_local
11+
@sudo mkdir -p ${WORK_D}/usr/local/outset/everyboot-scripts
12+
@sudo chown -R root:wheel ${WORK_D}/usr/local/outset/everyboot-scripts
13+
@sudo chmod -R 755 ${WORK_D}/usr/local/outset/everyboot-scripts
14+
15+
pack-usr-local-outset-everyboot-scripts-%: % l_usr_local_outset_everyboot_scripts
16+
@sudo ${INSTALL} -m 755 -g wheel -o root "${<}" ${WORK_D}/usr/local/outset/everyboot-scripts
17+
18+
l_library_profiles: l_Library
19+
@sudo mkdir -p ${WORK_D}/Library/Profiles
20+
@sudo chown root:admin ${WORK_D}/Library/Profiles
21+
@sudo chmod 755 ${WORK_D}/Library/Profiles
22+
23+
pack-library-profiles-%: % l_library_profiles
24+
@sudo ${INSTALL} -m 755 -g wheel -o root "${<}" ${WORK_D}/Library/Profiles

0 commit comments

Comments
 (0)