Skip to content

Commit a04863e

Browse files
committed
Merge pull request #1 from ridwanbejo/master
test
2 parents 3f1d212 + 49c5288 commit a04863e

File tree

14 files changed

+178
-0
lines changed

14 files changed

+178
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,9 @@ my-ignsdk-app
22
=============
33

44
Kumpulan aplikasi - aplikasi IGN SDK
5+
6+
1. ignsdk-todo.ign, merupakan aplikasi yang memperlihatkan CRUD dengan menggunakan IGNSDK
7+
2. info-distro.ign, merupakan aplikasi yang memperlihatkan informasi sebuah distro Linux
8+
3. pengatur-suara.ign, merupakan aplikasi yang dapat mengatur tinggi rendahnya volume suara laptop kita di Linux
9+
4. penyiram-fuzzy.ign, merupakan aplikasi yang memperlihatkan implementasi fuzzy logic pada kasus penyiram tanaman
10+
5. ignsdk-espeaker.ign, sebuah frontend untuk aplikasi text to speech e-speaker

ignsdk-espeaker.ign/app.spec

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
%define name <name>
2+
%define release <release>
3+
%define version <version>
4+
%define license <license>
5+
%define url http://<url>
6+
%define group System Environment/Base
7+
8+
Summary:IGOS Nusantara SDK Application
9+
Name:%{name}
10+
Version:%{version}
11+
Release:%{release}
12+
License:%{license}
13+
Group:%{group}
14+
URL:%{url}
15+
Source0:%{name}.tar.gz
16+
Source1:%{name}.txt
17+
BuildRoot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
18+
Requires:ignsdk
19+
BuildArch:noarch
20+
%description
21+
%{description}
22+
<desc>
23+
24+
%prep
25+
%setup -q -n %{name}
26+
27+
%install
28+
%include %{SOURCE1}
29+
30+
%clean
31+
rm -rf $RPM_BUILD_ROOT
32+
33+
%files
34+
%defattr(-,root,root,-)
35+
%dir
36+
%config %attr(0755,root,root)
37+
/opt/ignsdk/*
38+
/usr/share/applications/*
39+
40+
%changelog
41+
42+
* Mon Feb 18 2013 foo <[email protected]>
43+
- First Build

ignsdk-espeaker.ign/debian/README

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
IGN SDK Application ignsdk-espeaker.ign
2+
-------------------------------------
3+
4+
This application is built using IGOS Nusantara Software Development Kit
5+
6+
-- ridwanbejo <[email protected]> Jum, 22 Agu 2014 15:19:18 +0700

ignsdk-espeaker.ign/debian/changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
ignsdk-espeaker (1.0) 14.04; urgency=low
2+
3+
* Initial release.
4+
5+
-- ridwanbejo <[email protected]> Jum, 22 Agu 2014 15:19:18 +0700

ignsdk-espeaker.ign/debian/compat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9

ignsdk-espeaker.ign/debian/control

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Source: ignsdk-espeaker
2+
Section: unknown
3+
Priority: optional
4+
Maintainer: ridwanbejo <[email protected]>
5+
Build-Depends: ignsdk-debian | ignsdk, debhelper (>= 8.0.0)
6+
Standards-Version: 3.9.4
7+
#Homepage: <insert the upstream URL, if relevant>
8+
#Vcs-Git: git://git.debian.org/collab-maint/ignsdk-espeaker.git
9+
#Vcs-Browser: http://git.debian.org/?p=collab-maint/ignsdk-espeaker.git;a=summary
10+
11+
Package: ignsdk-espeaker
12+
Architecture: all
13+
Depends: ignsdk-debian | ignsdk, ${shlibs:Depends}, ${misc:Depends}
14+
Description: Another IGN SDK Application
15+
This is an IGN SDK Application

ignsdk-espeaker.ign/debian/copyright

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
Upstream-Name: ignsdk-espeaker
3+
Source: http://ignsdk.web.id
4+
5+
Files: *
6+
Copyright: 2014 ridwanbejo <[email protected]>
7+
<years> <likewise for another author>
8+
License: GPL-3.0+
9+
10+
Files: debian/*
11+
Copyright: 2014 ridwanbejo <[email protected]>
12+
License: GPL-3.0+
13+
14+
License: GPL-3.0+
15+
This program is free software: you can redistribute it and/or modify
16+
it under the terms of the GNU General Public License as published by
17+
the Free Software Foundation, either version 3 of the License, or
18+
(at your option) any later version.
19+
.
20+
This package is distributed in the hope that it will be useful,
21+
but WITHOUT ANY WARRANTY; without even the implied warranty of
22+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23+
GNU General Public License for more details.
24+
.
25+
You should have received a copy of the GNU General Public License
26+
along with this program. If not, see <http://www.gnu.org/licenses/>.
27+
.
28+
On Debian systems, the complete text of the GNU General
29+
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
30+
31+
32+
33+
34+

ignsdk-espeaker.ign/debian/docs

Whitespace-only changes.

ignsdk-espeaker.ign/debian/rules

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/make -f
2+
# -*- makefile -*-
3+
4+
# Uncomment this to turn on verbose mode.
5+
#export DH_VERBOSE=1
6+
7+
%:
8+
dh $@
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0 (native)

0 commit comments

Comments
 (0)