forked from DHowett/theos-nic-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
framework.nic
52 lines (45 loc) · 1.21 KB
/
framework.nic
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
nic 1
name "iphone/framework"
dir Resources
file 22 Resources/Info.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>@@PROJECTNAME@@</string>
<key>CFBundleIdentifier</key>
<string>@@PACKAGENAME@@</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>
file 2 @@PROJECTNAME@@.mm
// vim:ft=objc
file 7 Makefile
include theos/makefiles/common.mk
FRAMEWORK_NAME = @@PROJECTNAME@@
@@PROJECTNAME@@_FILES = @@PROJECTNAME@@.mm
@@PROJECTNAME@@_INSTALL_PATH = /Library/Frameworks
include $(THEOS_MAKE_PATH)/framework.mk
file 10 control
Package: @@PACKAGENAME@@
Name: @@FULLPROJECTNAME@@
Depends:
Version: 0.0.1
Architecture: iphoneos-arm
Description: An awesome framework of some sort!!
Maintainer: @@USER@@
Author: @@USER@@
Section: System
Tag: role::developer