└── debian ├── changelog ├── compat ├── control ├── copyright ├── rules └── source └── format /debian/changelog: -------------------------------------------------------------------------------- 1 | com.github.yourusername.yourrepositoryname (0.1) UNRELEASED; urgency=low 2 | 3 | * Initial Release. 4 | -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- 1 | Source: com.github.yourusername.yourrepositoryname 2 | Section: x11 3 | Priority: optional 4 | Maintainer: Cody Garver 5 | Build-Depends: cmake (>= 2.8), 6 | debhelper (>= 9), 7 | libgtk-3-dev, 8 | valac (>= 0.40.0) 9 | Standards-Version: 3.9.3 10 | 11 | Package: com.github.yourusername.yourrepositoryname 12 | Architecture: any 13 | Depends: ${misc:Depends}, ${shlibs:Depends} 14 | Description: Hey young world 15 | This is a Hello World written in Vala using CMake build system. 16 | -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- 1 | Format: https://dep.debian.net/deps/dep5 2 | Upstream-Name: cmake-hello-world 3 | Source: https://elementary.io 4 | 5 | Files: * 6 | Copyright: 2013 elementary LLC. 7 | License: GPL-3.0+ 8 | 9 | License: GPL-3.0+ 10 | This program is free software: you can redistribute it and/or modify 11 | it under the terms of the GNU General Public License as published by 12 | the Free Software Foundation, either version 3 of the License, or 13 | (at your option) any later version. 14 | . 15 | This package is distributed in the hope that it will be useful, 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 | GNU General Public License for more details. 19 | . 20 | You should have received a copy of the GNU General Public License 21 | along with this program. If not, see . 22 | . 23 | On Debian systems, the complete text of the GNU General 24 | Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". 25 | 26 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | # -*- makefile -*- 3 | # Sample debian/rules that uses debhelper. 4 | # This file was originally written by Joey Hess and Craig Small. 5 | # As a special exception, when this file is copied by dh-make into a 6 | # dh-make output file, you may use that output file without restriction. 7 | # This special exception was added by Craig Small in version 0.37 of dh-make. 8 | 9 | # Uncomment this to turn on verbose mode. 10 | #export DH_VERBOSE=1 11 | 12 | %: 13 | dh $@ 14 | 15 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | --------------------------------------------------------------------------------