add missing licence info

This commit is contained in:
Gabriel Rauter 2016-04-05 14:49:19 +02:00
parent b3b96a73a9
commit f9d13e94ed
5 changed files with 37 additions and 1 deletions

View File

@ -1,3 +1,10 @@
# Aseprite Desktop Integration Module
# Copyright (C) 2016 Gabriel Rauter
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
if(UNIX AND NOT APPLE)
install(FILES mime/aseprite.xml
DESTINATION share/mime/packages)

View File

@ -1,4 +1,12 @@
#!/usr/bin/sh
# Aseprite Desktop Integration Module
# Copyright (C) 2016 Gabriel Rauter
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
if [ $# -ge 2 -a $# -lt 4 ]; then
mkdir -p /tmp/Aseprite
filename=${1//\//.}$RANDOM

View File

@ -1,3 +1,10 @@
# Aseprite Desktop Integration Module
# Copyright (C) 2016 Gabriel Rauter
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
cmake_minimum_required(VERSION 2.8.12)
set(QT_MIN_VERSION "5.2.0")
project(asepritethumbnail)
@ -15,4 +22,4 @@ set(KDE_INSTALL_USE_QT_SYS_PATHS)
add_library(asepritethumbnail MODULE aseprite_thumb_creator.cpp)
target_link_libraries(asepritethumbnail KF5::KIOWidgets)
install(TARGETS asepritethumbnail DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES asepritethumbnail.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES asepritethumbnail.desktop DESTINATION ${SERVICES_INSTALL_DIR})

View File

@ -1,3 +1,10 @@
// Aseprite Desktop Integration Module
// Copyright (C) 2016 Gabriel Rauter
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
#include "aseprite_thumb_creator.h"
#include <QImage>

View File

@ -1,3 +1,10 @@
// Aseprite Desktop Integration Module
// Copyright (C) 2016 Gabriel Rauter
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
#ifndef _ASEPRITE_THUMBCREATOR_H_
#define _ASEPRITE_THUMBCREATOR_H_
#pragma once