Commit ff748f1a authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Updated Symbian UIDs. Added .pkg files for creating .sis packages.

parent b8193b63
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -6,4 +6,5 @@ OS400/make-lib.sh OS400/make-src.sh OS400/make-tests.sh OS400/os400sys.c \
OS400/os400sys.h OS400/README.OS400 \
Symbian/bwins/libcurlu.def Symbian/eabi/libcurlu.def Symbian/group/bld.inf \
Symbian/group/curl.iby Symbian/group/curl.mmp Symbian/group/libcurl.iby    \
Symbian/group/libcurl.mmp Symbian/readme.txt
Symbian/group/libcurl.mmp Symbian/group/curl.pkg Symbian/group/libcurl.pkg \
Symbian/readme.txt
+2 −0
Original line number Diff line number Diff line
// 
// curl file transfer utility command-line utility
//
// Use this file with buildrom to add curl to a device ROM
// 

#ifndef CURL_IBY
#define CURL_IBY
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@

TARGET        curl.exe
TARGETTYPE    exe
UID           0x00000000 0x10206442
UID           0x00000000 0xF0206442

SOURCEPATH	..\..\..\src
SOURCE \
+26 −0
Original line number Diff line number Diff line
; curl package defintion file
; Use with makesis to create a Symbian .sis package

;Language - standard language definitions
&EN

;Header - standard sis file header including version number
;Version scheme: curl's major, curl's minor, curl's subminor*100 + build number
; e.g. The third Symbian package of curl ver. 7.18.2 would have a SIS package
; version of 7, 18, 203
#{"curl"}, (0xF0206442), 7, 18, <please_update_version>, TYPE=SA

; Vendor name
%{"Standard libcurl package"}
:"Standard libcurl package"

; Embedded component
@"libcurl.sis",(0xF0206D00)

; A dependency on P.I.P.S. and the stdio server are probably good to have here
;(0x20009A80), *, *, *, {"P.I.P.S. for Series 60 3rd ed."}
;(0x20009A81), *, *, *, {"P.I.P.S. for UIQ 3"}
;(0x20009AA2), *, *, *, {"Symbian OS STDIOSERVER"}

;Files - standard file specifications
"epoc32\release\armv5\urel\curl.exe" - "$:\sys\bin\curl.exe"
+2 −0
Original line number Diff line number Diff line
//
// libcurl file transfer DLL
//
// Use this file with buildrom to add libcurl to a device ROM
//

#ifndef LIBCURL_IBY
#define LIBCURL_IBY
Loading