diff options
author | shingil.kang <shingil.kang@samsung.com> | 2012-09-19 17:33:03 +0900 |
---|---|---|
committer | shingil.kang <shingil.kang@samsung.com> | 2012-09-19 17:42:59 +0900 |
commit | a5fcfc66ce0cf8c05b0f59495c8eea86749617f7 (patch) | |
tree | 15c4c6e587b731645280966c8aefa4f431c40778 | |
parent | b87a749892b1e3924f99a0e1e71bfe3abcb91eed (diff) | |
download | sdk-info-master.tar.gz sdk-info-master.tar.bz2 sdk-info-master.zip |
Change-Id: I9b28b3c94da41d43049a0228d7c19ccdd507b992
-rw-r--r-- | AUTHOR | 2 | ||||
-rw-r--r-- | license/Tizen_OpenSource_License_Information.pdf | bin | 0 -> 377589 bytes | |||
-rw-r--r-- | package/build.ubuntu-32 | 28 | ||||
-rw-r--r-- | package/pkginfo.manifest | 23 | ||||
-rw-r--r-- | release-note/release-note.html | 7 |
5 files changed, 60 insertions, 0 deletions
@@ -0,0 +1,2 @@ +Sungho Park <chywoo@samsung.com> +Shingil Kang <shingil.kang@samsung.com> diff --git a/license/Tizen_OpenSource_License_Information.pdf b/license/Tizen_OpenSource_License_Information.pdf Binary files differnew file mode 100644 index 0000000..62e4501 --- /dev/null +++ b/license/Tizen_OpenSource_License_Information.pdf diff --git a/package/build.ubuntu-32 b/package/build.ubuntu-32 new file mode 100644 index 0000000..415d0ac --- /dev/null +++ b/package/build.ubuntu-32 @@ -0,0 +1,28 @@ +#!/bin/sh -xe + +PKG_NAME="sdk-info" +BIN_DIR=$SRCDIR/package/${PKG_NAME}.package.${BUILD_TARGET_OS} + +clean() +{ + rm -rf $SRCDIR/*.zip + rm -rf $BIN_DIR +} + +build() +{ + echo "done" +} + +install() +{ + mkdir -p $BIN_DIR/data + cp -f $SRCDIR/release-note/release-note.html $BIN_DIR/data + cp -rf $SRCDIR/license $BIN_DIR/data +} + +[ "$1" = "clean" ] && clean +[ "$1" = "build" ] && build +[ "$1" = "install" ] && install + +echo "success" diff --git a/package/pkginfo.manifest b/package/pkginfo.manifest new file mode 100644 index 0000000..2c8977b --- /dev/null +++ b/package/pkginfo.manifest @@ -0,0 +1,23 @@ +Source:sdk-info +Version:1.20.44 +Maintainer:Shingil Kang <shingil.kang@samsung.com>, Sungho Park <chywoo.park@samsung.com> + +Package:sdk-info +OS:ubuntu-32 +Build-host-os:ubuntu-32 +Description:Release note, License + +Package:sdk-info +OS:ubuntu-64 +Build-host-os:ubuntu-32 +Description:Release note, License + +Package:sdk-info +OS:windows-32 +Build-host-os:ubuntu-32 +Description:Release note, License + +Package:sdk-info +OS:windows-64 +Build-host-os:ubuntu-32 +Description:Release note, License diff --git a/release-note/release-note.html b/release-note/release-note.html new file mode 100644 index 0000000..e1a5dae --- /dev/null +++ b/release-note/release-note.html @@ -0,0 +1,7 @@ +<html> +<head> + <meta http-equiv="refresh" content="0;url=https://developer.tizen.org/sdk/2.0-alpha-release-notes"/> +</head> +<body> +</body> +</html> |